home *** CD-ROM | disk | FTP | other *** search
- /*
- When compiling for 3.0, I've found that changing the top-level Makefile
- was insufficient, at least when attempting to build the additional targets.
- To cover, I wrote this program.
-
- Daniel Ashton
- jdashton@southern.edu
-
- Copyright 1994 Daniel Ashton. All rights reserved. Use in the MiscKit
- is permitted under the terms of the MiscKit license.
- */
-
- #include <stdio.h>
-
- int main (int argc, char *argv[])
- { /*
- This is not a complete emulation of NeXT's arch_tool program.
- we are just assuming that the -archify flag was argv[1] since
- that is all the MiscKit needs to use. -DAY
- */
- int i;
- for (i = 2; i < argc; i++) printf ("-arch %s ", argv [i]);
- return 0;
- }
-
-